home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / text / edit / tecoc-146.lha / exeill.c < prev    next >
C/C++ Source or Header  |  1991-07-05  |  577b  |  20 lines

  1. /*****************************************************************************
  2.  
  3.     ExeIll()
  4.  
  5.     This function "executes" an illegal command.
  6.  
  7. *****************************************************************************/
  8.  
  9. #include "zport.h"        /* define portability identifiers */
  10. #include "tecoc.h"        /* define general identifiers */
  11. #include "defext.h"        /* define external global variables */
  12. #include "deferr.h"        /* define identifiers for error messages */
  13.  
  14. DEFAULT ExeIll()            /* illegal TECO command */
  15. {
  16.  
  17.     ErrChr(ERR_ILL, *CBfPtr);    /* ILL = illegal command */
  18.     return FAILURE;
  19. }
  20.